home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c) 1994, University of Kansas, All Rights Reserved
- //
- // Class: TSockView
- // Include File: tsockvie.h
- // Purpose: Display total amount of current network activity
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 01-31-94 created
- // 02-10-94 Split all members into seperate files.
- #include"tsockvie.h"
-
- void TSockView::update() {
- // Purpose: Update the view if socket usage has changed.
- // Arguments: void
- // Return Value: void
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 01-31-94 created
-
- if((uli_pres = GetSockSize()) != uli_past) {
- uli_past = uli_pres;
- drawView();
- }
- }
-